@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

a {
    color: black;
    text-decoration: none;
}

p {
    margin: 10px 0;
}


body {
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    background-color: #fafafa;
}

.header {
    height: 100px;
    background-color: rgb(255, 255, 255);
}

.logo {
    height: 80px;
    margin-top: 10px;
    float: left;
    margin-right: 40px;
}

.menu {
    height: 100px;
}

.menu-link {
    color: rgb(0, 0, 0);
    line-height: 100px;
    font-size: 20px;
    display: inline-block;
    padding: 0 10px;

    transition: 0.5s;
}

.menu-link:hover {
    background-color: #c4bebe;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.justify {
    text-align: justify;
}

.row {
    display: block;
}
.row:after {
    content: '';
    display: block;
    clear: both;
}

.w33 {
    width: 33.333333333%;
    float: left;
    padding: 10px;
}

.w25 {
    width: 25%;
    float: left;
    padding: 10px;
}

.w50 {
    width: 50%;
    float: left;
    padding: 10px;
}

.w75 {
    width: 75%;
    float: left;
    padding: 10px;
}


.w15 { width: 15%;
    float: left;
    padding: 10px;
}




.card {
    box-shadow: 0 4px 22px rgba(24,45,78,.17);
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 20px;
}

.card-panel {
    box-shadow: 0 4px 22px rgba(24,45,78,.17);
    border-radius: 16px;
    padding: 20px;
    background-color: white;
    margin: 20px 0;
}

.res-img {
    max-width: 100%;
    height: auto;
}

.card-text {
    height: 100px;
    overflow: hidden;
    padding: 20px;
}